home *** CD-ROM | disk | FTP | other *** search
/ Aminet 34 / Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso / Aminet / comm / misc / DragonDaemon.lha / DragonDaemon-Install / Programme / ARexx / Anwahl_starten < prev    next >
Text File  |  1999-10-02  |  346b  |  18 lines

  1. /* Wählmodul von DragonDaemon starten */
  2.  
  3. options results
  4.  
  5. if show('P','DragonDaemon') then 
  6.   do
  7.     Address "DragonDaemon"
  8.     DD_DIALNUMBER
  9.     if rc=0 then say "Gewählte Nummer und Port: " result
  10.     if rc=1 then say "unbekannter Fehler"
  11.     if rc=7 then say "Abbruch"
  12.     else say "Fehler"
  13.   end
  14.   else
  15.     say "DragonDaemon nicht aktiv!"
  16.  
  17.  
  18.